home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Compilers⁄Interps / C_Interp / main.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-05-14  |  176 b   |  13 lines  |  [TEXT/KAHL]

  1. /*** Main ***/
  2. #include "Compatibility.h"
  3. #include "File.h"
  4.  
  5. main()
  6. {
  7. char s[80];
  8.     printf("Running...\nScript to execute:");
  9.     gets(s);
  10.     printf("\n");
  11.     RunScript((Byte *) s);
  12. }
  13.